Skip to main content
Version: 1.0.2

Add Card Holder with Non Primary Address

Create a card holder with an address which is different from the one that was provided while onboarding the customer.

Method: POST

{{URL}}/cardv2

Example

Payload Parameters
ParametersDescription

reference

Optional

String

Unique reference ID of the request

Sample value: "visadps100001"

product

Mandatory

String

Name of the product associated with the card

Sample value: "DEFAULT"

program

Mandatory

String

Name of the program to which the card product is mapped

Sample value: "DEFAULT"

channel

Mandatory

Enum

Processing channel through which the card transaction

happens

Valid values:

PULSE

VISA_DPS

Sample value: "VISA_DPS"

transactionType

Mandatory

String

Type of operation/transaction

Constant value: "ADD_CARD_HOLDER_WITH_NON_PRIMARY_ADDRESS"

customerId

Mandatory

String

Unique Id of the customer

Sample value: "100000000006001"

accountNumber

Mandatory

String

Account number of the customer

Sample value: "400320588344662"

cardHolder

Mandatory

firstName

Mandatory

String

First name of the account holder

Sample value: "Matthew"

lastName

Mandatory

String

Last name of the account holder

Sample value: "Sandra"

phoneNumber

Mandatory

String

Phone number of the account holder

Sample value: "2562322420"

emailId

Mandatory

String

Email address of the account holder

Sample value: "mathewsandra+1@gmail.com"

addressLine1

Mandatory

String

First line of account holder's address

Sample value: "3456W"

addressLine2

Mandatory

String

Second line of account holder's address

Sample value: "1st street"

city

Mandatory

String

City where account holder resides

Sample value: "Kansus"

state

Mandatory

String

State where account holder resides

Sample value: "KS"

zipCode

Mandatory

String

Zipcode of account holder's address

Sample value: "56213"


curl --location --globoff '{{URL}}/cardv2' \
--header 'Content-Type: application/json' \
--data-raw '{"method":"ledger.CARD.request","id":"1","params":{"payload":{"reference":"visadps100001","product":"DEFAULT","program":"DEFAULT","channel":"VISA_DPS","transactionType":"ADD_CARD_HOLDER_WITH_NON_PRIMARY_ADDRESS","customerId":"100000000006001","accountNumber":"400320588344662","cardHolder":{"firstName":"Matthew","lastName":"Sandra","phoneNumber":"2562322420","emailId":"mathewsandra+1@gmail.com","addressLine1":"3456W","addressLine2":"1st street","city":"Kansus","state":"KS","zipCode":"56213"}},"api":{"signature":"{{signature}}","apiKey":"{{Api-key}}","credential":"{{cred}}"}}}'

Body

{
"method": "ledger.CARD.request",
"id": "1",
"params": {
"payload": {
"reference": "visadps100001",
"product": "DEFAULT",
"program": "DEFAULT",
"channel": "VISA_DPS",
"transactionType": "ADD_CARD_HOLDER_WITH_NON_PRIMARY_ADDRESS",
"customerId": "100000000006001",
"accountNumber": "400320588344662",
"cardHolder": {
"firstName": "Matthew",
"lastName": "Sandra",
"phoneNumber": "2562322420",
"emailId": "mathewsandra+1@gmail.com",
"addressLine1": "3456W",
"addressLine2": "1st street",
"city": "Kansus",
"state": "KS",
"zipCode": "56213"
}
},
"api": {
"signature": "{{signature}}",
"apiKey": "{{Api-key}}",
"credential": "{{cred}}"
}
}
}

Response: 200

Response Parameters
ParametersDescription

id

String

Response Id echoed from the request Id

Sample value: " 1"

result

Object

cardHolderId

String

Unique id of the card holder

Sample value: " CH00000000020003"

api

Object

type

String

Acknowledgement for type of operation requested for

Constant value: " ADD_CARD_HOLDER_WITH_NON_PRIMARY_ADDRESS_ACK"

reference

String

Auto generated reference ID of this acknowledgment

Sample value: " REFvisadps100001"

dateCreated

Number

Unix timestamp of the response was created

Sample value: 1732085482

originalReference

String

Original reference ID taken from the request

Sample value: " visadps100001"


{
"id": "1",
"result": {
"cardHolderId": "CH00000000020003",
"api": {
"type": "ADD_CARD_HOLDER_WITH_NON_PRIMARY_ADDRESS_ACK",
"reference": "REFvisadps100001",
"dateCreated": 1732085482,
"originalReference": "visadps100001"
}
}
}